cd7bd7a080ec09977415d2665f6d5b69bd29df51,src/org/opencms/workplace/commons/CmsPublishProject.java,CmsPublishProject,initWorkplaceRequestValues,#CmsWorkplaceSettings#HttpServletRequest#,410
Before Change
} else if (REPORT_BEGIN.equals(getParamAction())) {
setAction(ACTION_REPORT_BEGIN);
} else if (REPORT_END.equals(getParamAction())) {
if ("true".equals(getParamThreadHasNext())) {
// after the link check start the publish thread
startPublishThread();
After Change
} else if (REPORT_BEGIN.equals(getParamAction())) {
setAction(ACTION_REPORT_BEGIN);
} else if (REPORT_END.equals(getParamAction())) {
if (Boolean.valueOf(getParamThreadHasNext()).booleanValue()) {
// after the link check start the publish thread
startPublishThread();